/* General y variables */

* {
    margin: 3px;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  :root{
    --Gray:#394867;
    --DarkGray:#14274E;
    --Blue:#9BA4B4;
    --White:#F1F6F9;
  }
  
  /* Body */
  
  body {
    background-color: var(--Gray);
   }
  
  /* Header */
  
  header {
    background-color: var(--DarkGray);
    border-radius: 25px;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
   }
   .Titulo {
    color: var(--Blue);
   }
  
   header button {
    border: none ;
    background: none;
    margin: 0 10px;
    color: var(--White);
   }
  
   header a {
    text-decoration: none;
    border: none ;
    background: none;
    margin: 0 10px;
    color: var(--White);
   }
  
   header h1 {
    color: var(--Blue);
   }	
  
   header a:hover {
    border-radius: 3px;
    cursor: pointer;
    border-radius: 10px;
   }
   
   header a:hover {
    border-radius: 3px;
    cursor: pointer;
    border-radius: 10px;
    color: var(--Blue);
   }

  /* General seccion*/
 
 .TextoSeccion {
  text-align: center;
  margin-bottom: 5px;
  margin-left: 5px;
  color: var(--Blue);
 }

 .TextoSeccion-center {
  text-align: center;
  color: var(--Blue);
}

  
  /* Seccion Principal */

 .section-1 {
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  background-color: var(--DarkGray);
  border-radius: 25px;
  padding: 10px;
  text-align: justify;
 }
 
 .section-1 h2 {
  text-align: center;
  color: var(--Blue);
  margin-top: 0;
 }

 .section-1 p {
  color: var(--White);
  margin-top: 10px;
 }
 
 .section-1 .text-small {
  color: var(--White);
  margin-top: 10px;
 }
 
 .section-1 button {
  align-self: flex-end;
  margin-left: 90%;
  border: none ;
  background: none;
  color: var(--White)
 }

 .section-1 button:hover {
  border-radius: 3px;
  cursor: pointer;
  border-radius: 10px;
  color: var(--Blue);
 }

 .section-1 > img {
  margin-top: 5%;
  align-self: center;
  display: flex;
  flex-direction: row;
  max-width: 50%;
  max-height: 50%;
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  object-fit: contain;
 }

/* Seccion 2 */

 .section-2 {
  margin-bottom: 5px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 5px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  background-color: var(--DarkGray);
  border-radius: 25px;
  padding: 10px;
  text-align: justify;
 }

 .section-2 h2 {
  color: var(--Blue);
  margin-top: 0;
 }

 .section-2 p {
  color: var(--White);
  margin-top: 10px;
 }
 
 .section-2 .text-small {
  color: var(--White);
  margin-top: 10px;
 }

 .section-2 span {
  font-size: 20px;
  color: var(--Blue);
  }

 .section-2-left {
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  background-color: var(--DarkGray);
  border-radius: 25px;
  padding: 10px;
  text-align: right justify;
 }
 

 .section-2-left h2 {
  color: var(--Blue);
  margin-top: 0;
 }

 .section-2-left p {
  color: var(--White);
  margin-top: 10px;
 }
 
 .section-2-left .text-small {
  color: var(--Blue);
  margin-top: 10px;
 }

 /* Seccion de galeria */
 .section-galeria {
  margin-bottom: 5px;
  display: flex; 
  justify-content: space-around;
  margin-right: 5px;
  margin-left: 5px;
 }

 .section-galeria .text-small {
  text-align: center;
  color: var(--Blue);
  margin-top: 10px;
 }
 
 .section-galeria > div {
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  background-color: var(--DarkGray);
  border-radius: 25px;
  padding: 10px;
  width: 45%;
 }

 .section-galeria > div > img {
  margin-top: 5%;
  align-self: center;
  display: flex;
  flex-direction: row;
  max-width: 90%;
  max-height: 90%;
  display: block;
  margin: 0 auto;
  border-radius: 25px;
  object-fit: contain;
}

/* IFRAME */

iframe {
  border-radius: 25px;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.section-1 iframe {
  width: 100%;
  height: 500px;
}

/* Seccion Nosotros */

.section-nos {
  justify-content: space-between;
 }	

 .section-nos > div {
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
  background-color: var(--DarkGray);
  border-radius: 25px;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
  padding-left: 4px;
  padding-right: 4px;
 }

 .section-nos a {
  text-decoration: none;
  border: none ;
  background: none;
  margin: 0 10px;
  color: var(--White);
 }

 .section-nos h3 {
  color: var(--Blue);
  margin-top: 0;
 }

 .section-nos h3> span {
  color: var(--Blue);
  align-self: right;
 }
 
 .section-nos p {
  color: var(--White);
  margin-top: 10px;
 }
 
 .section-nos button {
  align-self: flex-end;
  margin-left: 90%;
  border: none ;
  background: none;
  color: var(--White)
 }

 .section-nos button:hover {
  border-radius: 3px;
  cursor: pointer;
  border-radius: 10px;
  color: var(--Blue);
 }


   /* Footer */
  
   footer {
    background-color: var(--DarkGray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    border-radius: 25px;
   }
  
   footer p {
    align-self: center;
    color: var(--White);
    margin-top: 0;
   }